New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@travetto/compiler

Package Overview
Dependencies
Maintainers
1
Versions
305
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/compiler

Node-integration of Typescript Compiler with advanced functionality for detecting changes in classes and methods.

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Compiler

Node-integration of Typescript Compiler with advanced functionality for detecting changes in classes and methods.

Install: @travetto/compiler

npm install @travetto/compiler

This module expands upon Typescript, with supplemental functionality:

  • Read tsconfig.json from the project directory to provide
  • Supports on-the-fly compilation, nothing needs to be compiled ahead of time
  • Enhanced AST transformations, and transformer registration [object Object]
  • Intelligent caching of source files to minimize recompilation
  • Support for detecting changes in sources files at runtime
  • Allows for hot-reloading of classes during development
    • Utilizes es2015 Proxys to allow for swapping out implementation at runtime

Additionally, there is support for common AST transformations via Transformation

Debugging

When dealing with transformers, logging is somewhat tricky as the compiler executes before the code is loaded. To that end, the file compiler.log is created in the cache directory during the compilation process. This is a location that transformers should be free to log to, for debugging, and any additional feedback.

CLI - compile

Terminal: Compiler usage

$ travetto travetto compile --help

Usage:  compile [options]

Options:
  -c, --clean            Indicates if the cache dir should be cleaned
  -o, --output <output>  Output directory
  -q, --quiet            Quiet operation
  -h, --help             display help for command

This command line operation pre-compiles all of the application source code. You can target the output location as well, which is useful in conjunction with process.env.TRV_CACHE for relocating the compiled files.

Keywords

FAQs

Package last updated on 31 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc